home *** CD-ROM | disk | FTP | other *** search
/ The Macintosh Bible Guide to Games / GameGuideCd.bin / Cheaters / Marathon Stuff / Pfhorte_1.0d22ƒ / Scripts / Make Better Door < prev    next >
Text File  |  1995-08-07  |  511b  |  30 lines

  1. * This script is Copyright 1995 by Steve Israelson
  2. * Does NOT Segment a line but does add a small polygon, or three
  3. * to that line segment, and turns it into a door
  4. *
  5. * First the doorway
  6. height 1024
  7. Gosub makeDoorPoly
  8.  
  9. * The door itself
  10. popLine
  11. polyType Platform
  12. Gosub makeDoorPoly
  13.  
  14. * The connecting doorway
  15. popLine
  16. polyType Normal
  17. Gosub makeDoorPoly
  18.  
  19. Subroutine makeDoorPoly
  20.     turn -90
  21.     newLine 128
  22.     turn 90
  23.     newLine LineLength
  24.     * Save this line for the Doorway
  25.     pushLine
  26.     lastPoint
  27.     makeLine
  28.     closePoly
  29. EndSub
  30.